Overview
Comment:Added timestamp to std::cerr message when solver fails to converge.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 51fbfa2ec34043285ee581c9d022693585c48fffffbc552fd4c5cda42d21fc46
User & Date: geraint@users.sourceforge.net on 2002-04-16 09:18:29.000
Other Links: branch diff | manifest | tags
Context
2002-04-16
10:50:51
Added to run mtt_cvs mailing list check-in: 7a37d2206d user: gawthrop@users.sourceforge.net tags: origin/master, trunk
09:18:29
Added timestamp to std::cerr message when solver fails to converge. check-in: 51fbfa2ec3 user: geraint@users.sourceforge.net tags: origin/master, trunk
2002-04-15
10:54:31
Statically declare outputs and initialise to zero.
This is necessary to prevent spurious values from being output when no assignments are made (i.e. when "y(i) := 0 for all u" (Reduce:see NERO)).
check-in: 3a7b407410 user: geraint@users.sourceforge.net tags: origin/master, trunk
Changes
53
54
55
56
57
58
59

60
61
62
63
64
65
66
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67







+







    default:
      unknown_errors++;
      break;
    }
  if (1 != info)
    {
      std::cerr
	<< " time " << _t << " \t"
	<< " converge (" << convergences << ") "
	<< " limit (" << limit_errors << ")"
	<< " (max error = " << std::abs (eval(_ui).max()) << ")"
	<< " other (" << input_errors + user_errors + progress_errors + unknown_errors << ") "
	<< std::endl;
    }
  ferr << info << " ";

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