Overview
Comment: | Temporary fix to avoid incorrect _input.cc with stdin |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
ca16ae9fae44efdff0d260a9ab2c8f7d |
User & Date: | gawthrop@users.sourceforge.net on 2001-04-11 07:52:45 |
Other Links: | branch diff | manifest | tags |
Context
2001-04-11
| ||
09:44:26 |
Fixed cc and c problems to do with pow(x,y) and integers mtt/lib/reduce/fix_c.r is included in rdae2dae and cse2smx_lang for -c, -cc and -oct options check-in: 9612ed3ef0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:52:45 | Temporary fix to avoid incorrect _input.cc with stdin check-in: ca16ae9fae user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
07:36:10 |
Now uses system_cr.h in place of system.h in .c rep - compatible with older code check-in: 3d83aec7ca user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/rep/ippp_rep.make from [2354554fee] to [0fea0a2c82].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # -*-makefile-*- # Makefile for representation ippp - ppp system identification # File ippp_rep.make ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 2001/04/04 10:05:38 gawthrop ## Reresentation for system identification for ppp ## ############################################################### #Copyright (C) 2000 by Peter J. Gawthrop | > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # -*-makefile-*- # Makefile for representation ippp - ppp system identification # File ippp_rep.make ###################################### ##### Model Transformation Tools ##### ###################################### ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 2001/04/05 11:49:07 gawthrop ## Fixed a number of bugs to as to work with reports. ## ## Revision 1.1 2001/04/04 10:05:38 gawthrop ## Reresentation for system identification for ppp ## ############################################################### #Copyright (C) 2000 by Peter J. Gawthrop |
︙ | ︙ | |||
46 47 48 49 50 51 52 | $(SYS)_outputs.pdf: $(SYS)_parameters.pdf touch $(SYS)_outputs.pdf ## Note when a proper input.cc for stdin is available, change to ## mtt -q $(OPTS) -stdin -s s$(SYS) ode2odes oct s$(SYS)_ode2odes.m: | | | | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | $(SYS)_outputs.pdf: $(SYS)_parameters.pdf touch $(SYS)_outputs.pdf ## Note when a proper input.cc for stdin is available, change to ## mtt -q $(OPTS) -stdin -s s$(SYS) ode2odes oct s$(SYS)_ode2odes.m: echo Starting creation of s$(SYS)_ode2odes.m with options $(OPTS) mtt -q $(OPTS) -s s$(SYS) ode2odes m; rm s$(SYS)_input.oct; make_stdin s$(SYS) m s$(SYS)_ssim.m: s$(SYS)_def.m mtt -q $(OPTS) -s s$(SYS) ssim m s$(SYS)_sympar.m: mtt -q $(OPTS) -s s$(SYS) sympar m s$(SYS)_simpar.m: mtt -q $(OPTS) -s s$(SYS) simpar m s$(SYS)_def.m: mtt -q $(OPTS) -s s$(SYS) def m |