Overview
Comment: | Changes to make MTT work out of the box with Debian. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
47dd54af9a9407873003fe6ef24a51a1 |
User & Date: | geraint@users.sourceforge.net on 2002-02-19 16:27:06 |
Other Links: | branch diff | manifest | tags |
Context
2002-03-07
| ||
16:24:16 | New example - used for teaching about linearisation ... check-in: ec07da0b26 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2002-02-19
| ||
16:27:06 | Changes to make MTT work out of the box with Debian. check-in: 47dd54af9a user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2002-01-11
| ||
03:44:19 | Breaks compounds objects into individual components. Eliminates "incorrect object code error" in cbg.ps when component is not causally complete. check-in: 49b14f476c user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt from [26eafa49b6] to [e3e34a8d53].
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.326 2001/10/26 01:01:47 geraint ## fixcc when rdae_is_dae (-cr). ## ## Revision 1.325 2001/10/11 03:15:55 geraint ## Fixed make dependencies for c++ simulation code ## - re-simulation no longer required for different output format. ## | > > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.327 2001/11/15 02:56:17 geraint ## Added DASSL as an option for solution of algebraic equations (-ae dassl). ## Requires octave-2.1.35. ## ## Revision 1.326 2001/10/26 01:01:47 geraint ## fixcc when rdae_is_dae (-cr). ## ## Revision 1.325 2001/10/11 03:15:55 geraint ## Fixed make dependencies for c++ simulation code ## - re-simulation no longer required for different output format. ## |
︙ | ︙ | |||
2702 2703 2704 2705 2706 2707 2708 | endif #SUMMARY ode2odes Simulation function (m) #SUMMARY ode2odes Simulation function (cc) #SUMMARY ode2odes Simulation function (oct) #SUMMARY ode2odes Simulation function (exe) $1_ode2odes.exe: $1_def.h $1_sympar.h\ | | | | 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 | endif #SUMMARY ode2odes Simulation function (m) #SUMMARY ode2odes Simulation function (cc) #SUMMARY ode2odes Simulation function (oct) #SUMMARY ode2odes Simulation function (exe) $1_ode2odes.exe: $1_def.h $1_sympar.h\ $1_ode2odes.o $1_ode2odes_common.o $1_ode2odes_${integration_method}.o $1_ode2odes_${algebraic_solver}.o mtt_kpathsea.o echo Creating $1_ode2odes.exe ${MTT_CXX} ${MTT_CXXFLAGS} -o $1_ode2odes.exe\ $1_ode2odes.o $1_ode2odes_common.o $1_ode2odes_${integration_method}.o $1_ode2odes_${algebraic_solver}.o mtt_kpathsea.o\ ${MTT_LDFLAGS} ${MTT_CXXLIBS} $1_ode2odes.o: $1_ode2odes.cc $1_ode2odes_common.o $1_ode2odes_${integration_method}.o $1_ode2odes_${algebraic_solver}.o echo Creating $1_ode2odes.o ${MTT_CXX} ${MTT_CXXFLAGS} ${MTT_CXXINCS} -c $1_ode2odes.cc -DSTANDALONE $1_ode2odes.oct: $1_ode2odes.cc $1_ode2odes_common.oct $1_ode2odes_${integration_method}.oct $1_ode2odes_${algebraic_solver}.o |
︙ | ︙ |
Added mttroot/mtt/lib/cc/mtt_kpathsea.cc version [0b0240614b].
> > > > | 1 2 3 4 | extern "C" { int kpse_clear_dir_cache (void) {return 0;} } |
Modified mttroot/mtt/lib/rep/gnuplot_rep.make from [c53300960d] to [95bd623855].
1 2 3 4 5 6 7 8 | # -*-makefile-*- # create a gnuplot input file MTTFLAGS = $(OPTS) all: $(SYS)_gnuplot.$(LANG) $(SYS)_gnuplot.view: $(SYS)_gnuplot.wish $(SYS)_odes.dat2 | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | # -*-makefile-*- # create a gnuplot input file MTTFLAGS = $(OPTS) all: $(SYS)_gnuplot.$(LANG) $(SYS)_gnuplot.view: $(SYS)_gnuplot.wish $(SYS)_odes.dat2 sh $(SYS)_gnuplot.wish $(SYS)_gnuplot.wish: $(SYS)_struc.txt $(MTTPATH)/trans/struc2gnuplot_txt2wish $(SYS) $(SYS)_gnuplot.txt: $(SYS)_struc.txt $(MTTPATH)/trans/struc2gnuplot_txt.exe $(MTTPATH)/trans/struc2gnuplot_txt.exe $(SYS) < $(SYS)_struc.txt > $(SYS)_gnuplot.txt |
︙ | ︙ |