Skip to Content.
Sympa Menu

cgal-discuss - Re: [cgal-discuss] Segmentation fault from Quadratic (and Linear) Program

Subject: CGAL users discussion list

List archive

Re: [cgal-discuss] Segmentation fault from Quadratic (and Linear) Program


Chronological Thread 
  • From: William Taysom <>
  • To:
  • Subject: Re: [cgal-discuss] Segmentation fault from Quadratic (and Linear) Program
  • Date: Thu, 12 Jan 2012 09:32:29 +0800

> I'll get back to you when we know more.

Thank you Bernd, please do.

> As a quick fix (that worked in the other case), you might try to replace
> the equality constraint by a pair of inequality constraints.

This is exactly what we did. We found that it's important for the constraint
to be loose, but it doesn't need to be very loose. In other words, this pair
of constraints didn't work in general:

a * x <= b
a * x >= b

But this pair did:

a * x <= b + 1e-6
a * x >= b

Let me know if I can provide you with any other information,
William


Archive powered by MHonArc 2.6.16.

Top of Page