Overview
Comment:Commented out equation tolerance assignment.
Default is more appropriate for general models.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: dba62df6f856fd6c5c25cb43990bb797624d6eb72a43bf0a8f0b978f55dcbd87
User & Date: geraint@users.sourceforge.net on 2003-12-17 17:21:35
Other Links: branch diff | manifest | tags
Context
2004-01-21
15:53:29
Added support for zoomable gnuplot (3.8):
allows co-ordinates to be obtained with the mouse, sections to be zoomed
and 3D plots to be rotated by dragging.

Added menu item to change data styles to dots, points or lines (default). check-in: ca4fee02c1 user: geraint@users.sourceforge.net tags: origin/master, trunk

2003-12-17
17:21:35
Commented out equation tolerance assignment.
Default is more appropriate for general models.
check-in: dba62df6f8 user: geraint@users.sourceforge.net tags: origin/master, trunk
2003-12-03
14:55:17
Display fabs(x) as |x| (required when -cc option is used). check-in: fcb8d736be user: geraint@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/lib/cc/mtt_Hybrd_Solver.cc from [f06a11fc35] to [0e7392017c].

23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  static int convergences;
  static int progress_errors;
  static int limit_errors;
  static int unknown_errors;
  
  NLFunc fcn(&Hybrd_Solver::f_hybrd);
  NLEqn	 eqn(Solver::_ui,fcn);
  eqn.set_tolerance(1.0e-20);
  Solver::_ui = eqn.solve(info);

  switch (info)
    {
    case 1:
      convergences++;
      break;







|







23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  static int convergences;
  static int progress_errors;
  static int limit_errors;
  static int unknown_errors;
  
  NLFunc fcn(&Hybrd_Solver::f_hybrd);
  NLEqn	 eqn(Solver::_ui,fcn);
  //  eqn.set_tolerance(1.0e-20);
  Solver::_ui = eqn.solve(info);

  switch (info)
    {
    case 1:
      convergences++;
      break;


MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]