Overview
Comment:Return input vector unchanged so that dassl can do the hard stuff.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 864c3c471118252a85ca0e29a954fe4db995305272bd8124ad11576208cc2ac3
User & Date: geraint@users.sourceforge.net on 2001-08-01 22:16:01
Other Links: branch diff | manifest | tags
Context
2001-08-02
03:01:08
Stopped initialisation of mttopen from over-writing logic.txt contents.
- comment removed from "sort" input (which put it last) because
initialisation is inserted in place of the comment by switch_txt2m.
check-in: d3736ff8dc user: geraint@users.sourceforge.net tags: origin/master, trunk
2001-08-01
22:16:01
Return input vector unchanged so that dassl can do the hard stuff. check-in: 864c3c4711 user: geraint@users.sourceforge.net tags: origin/master, trunk
22:14:32
Bug fix for dassl. check-in: 8e4e6001ef user: geraint@users.sourceforge.net tags: origin/master, trunk
Changes

Modified mttroot/mtt/lib/cc/mtt_Reduce_Solver.cc from [708e6aadb5] to [f538a6f60b].

1
2
3
4
5
6
7
8
9
10
11










#include "mtt_Reduce_Solver.hh"


void
Reduce_Solver::Solve (void)
{
  std::cerr << "Error:"
	    << " Symbolic solution of equations failed during model build" << std::endl
	    << "       Try using one of the other algebraic solution methods" << std::endl;
}
















|
|
|

>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#include "mtt_Reduce_Solver.hh"


void
Reduce_Solver::Solve (void)
{
  //  std::cerr << "Error:"
  //	    << " Symbolic solution of equations failed during model build" << std::endl
  //	    << "       Try using one of the other algebraic solution methods" << std::endl;
}

ColumnVector
Reduce_Solver::solve (const ColumnVector	&x,
		      const ColumnVector	&u,
		      const double		&t,
		      const ColumnVector	&par)
{
  return u;
}

Modified mttroot/mtt/lib/cc/mtt_Reduce_Solver.hh from [64e757e6a7] to [69ab00e508].

17
18
19
20
21
22
23






24
25
26
27
		 const int nyz)
    : Solver (ae,npar,nu,nx,ny,nyz)
  { ; };
	
  void
  Solve (void);







  ~Reduce_Solver (void) {};

};
   







>
>
>
>
>
>




17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
		 const int nyz)
    : Solver (ae,npar,nu,nx,ny,nyz)
  { ; };
	
  void
  Solve (void);

  ColumnVector
  solve (const ColumnVector	&x,
	 const ColumnVector	&u,
	 const double		&t,
	 const ColumnVector	&par);

  ~Reduce_Solver (void) {};

};
   


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