# HG changeset patch # User jwe # Date 1200723887 0 # Node ID 32c1c3a3b07c9f2cc17dc178b62724735fc9355f # Parent 135c13496fafcce605b9e556e1731b0871646b2d [project @ 2008-01-19 06:24:47 by jwe] diff --git a/scripts/optimization/sqp.m b/scripts/optimization/sqp.m --- a/scripts/optimization/sqp.m +++ b/scripts/optimization/sqp.m @@ -734,4 +734,4 @@ %! %! obj_opt = 0.0539498477702739; %! -%! assert (all (abs (x-x_opt) < sqrt (eps)) && abs (obj-obj_opt) < sqrt (eps)); +%! assert (all (abs (x-x_opt) < 4*sqrt (eps)) && abs (obj-obj_opt) < sqrt (eps)); diff --git a/src/graphics.h.in b/src/graphics.h.in --- a/src/graphics.h.in +++ b/src/graphics.h.in @@ -963,26 +963,26 @@ base_properties (const std::string& ty = "unknown", const graphics_handle& mh = graphics_handle (), const graphics_handle& p = graphics_handle ()) - : tag ("tag", mh), - type ("type", mh, ty), - __modified__ ("__modified__", mh, true), - __myhandle__ (mh), - parent ("parent", mh, p), - children (), + : beingdeleted ("beingdeleted", mh, false), busyaction ("parent", mh, "{queue}|cancel"), buttondownfcn ("buttondownfcn", mh, Matrix ()), + children (), clipping ("clipping", mh, true), createfcn ("createfcn" , mh, Matrix ()), deletefcn ("deletefcn", mh, Matrix ()), handlevisibility ("handlevisibility", mh, "{on}|callback|off"), hittest ("hittest", mh, true), interruptible ("interruptible", mh, true), + parent ("parent", mh, p), selected ("selected", mh, false), selectionhighlight ("selectionhighlight", mh, true), - uicontextmenu ("uicontextmenu", mh, graphics_handle ()), + tag ("tag", mh), + type ("type", mh, ty), userdata ("userdata", mh, Matrix ()), visible ("visible", mh, true), - beingdeleted ("beingdeleted", mh, false) + __modified__ ("__modified__", mh, true), + __myhandle__ (mh), + uicontextmenu ("uicontextmenu", mh, graphics_handle ()) { } virtual ~base_properties (void) { }