SQLITE_NOTICE(283): recovered 5 frames from WAL file /data/mtt.fossil-wal
Differences From Artifact [054ffa4011]:
- Executable file mttroot/mtt/bin/trans/p/mtt_solve.p — part of check-in [1c85e99796] at 1999-10-26 23:44:36 on branch origin/master — Now packages up mtt_solve_lud OR mtt_solve_svd (user: gawthrop@users.sourceforge.net, size: 804) [annotate] [blame] [check-ins using]
To Artifact [284b083bf3]:
- Executable file mtt/bin/trans/p/mtt_solve.p — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 899) [annotate] [blame] [check-ins using] [more...]
- Executable file
mttroot/mtt/bin/trans/p/mtt_solve.p
— part of check-in
[83c3d143e1]
at
2000-08-01 09:33:28
on branch origin/master
— Include mtt_solve_lud within scope of this function - seems to avaoid
probs with p2c (user: gawthrop@users.sourceforge.net, size: 899) [annotate] [blame] [check-ins using]
|
| | | | | > > > > | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | PROCEDURE mtt_solve(VAR x : StateVector; A : StateMatrix; B : StateVector; n : integer); { % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % $Id$ % % $Log$ % % Revision 1.3 1999/10/26 23:44:36 peterg % % Now packages up mtt_solve_lud OR mtt_solve_svd % % % % Revision 1.2 1998/08/14 12:09:13 peterg % % A passed by value - its destroyed by SVDcm % % % % Revision 1.1 1998/08/13 08:51:57 peterg % % Initial revision % % % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% } VAR i : integer; wmax,wmin : real; w : StateVector ; v : StateMatrix; (*$I $MTTPATH/trans/p/mtt_solve_lud.p *) (* I $MTTPATH/trans/p/mtt_solve_svd.p *) BEGIN{mtt_solve} mtt_solve_lud(x,A,B,N); (*** mtt_solve_svd(x,A,B,N); ***) END{mtt_solve}; |