Overview
| Comment: | #include <fstream> for -oct as well as -cc. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
cbf1949cbb1bdb297ade659cef2ed9cc |
| User & Date: | geraint@users.sourceforge.net on 2002-04-17 13:46:58.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2002-04-17
| ||
| 16:23:59 |
Partial fix for [ 545113 ] zeros missing in c++. Fixes -oct by removing duplicate initialisation (-c is still outstanding). check-in: bb99a0315a user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 13:46:58 | #include <fstream> for -oct as well as -cc. check-in: cbf1949cbb user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 10:03:12 | Marked .sg as a major representation. check-in: fd2d783583 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/make_ode2odes
from [6009f95c6f]
to [ca4305faeb].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | + + + + |
#! /bin/sh
######################################
##### Model Transformation Tools #####
######################################
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.68 2002/04/15 10:54:31 geraint
## 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)).
##
## Revision 1.67 2002/04/09 12:04:21 geraint
## Replaced ios:: with std::ios:: for g++-3.0 compatability.
##
## Revision 1.66 2002/03/26 11:58:58 geraint
## Added cputime monitoring.
##
## Revision 1.65 2001/11/15 06:24:11 geraint
|
| ︙ | |||
421 422 423 424 425 426 427 428 429 | 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 | + - |
#endif
#include "${sys}_def.h"
#include "${sys}_sympar.h"
#include "mtt_${algebraic_solver}.hh"
#include <fstream>
#ifdef STANDALONE
#include <csignal>
|
| ︙ |