Skip to content

Commit

Permalink
Temporarily disable inverse characteristic method again since the con…
Browse files Browse the repository at this point in the history
…verters need list generalizations etc.
  • Loading branch information
aplatzer committed Sep 3, 2016
1 parent f314335 commit d4eff13
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,8 @@ private object DifferentialTactics {
) & ODE(pos) | noCut(pos) |
// if no differential cut succeeded, just skip and go for a direct proof.
//@todo could swap diffSolve before above line with noCut once diffSolve quickly detects by dependencies whether it solves
TactixLibrary.diffSolve()(pos) |
TactixLibrary.diffSolve()(pos)
/*|
ChooseSome(
//@todo should memoize the results of the differential invariant generator
() => InvariantGenerator.extendedDifferentialInvariantGenerator(seq,pos),
Expand All @@ -627,7 +628,7 @@ private object DifferentialTactics {
// show diffCut, but don't use yet another diffCut
noCut(pos) & done
)
) & ODE(pos)
) & ODE(pos) */
})


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import scala.collection.immutable.Map
* @author Stefan Mitsch
* @todo Code Review: Move non-critical tool implementations into a separate package tactictools
*/
class Mathematica extends ToolBase("Mathematica") with QETool with ODESolverTool with CounterExampleTool with SimulationTool with DerivativeTool with EquationSolverTool with SimplificationTool with AlgebraTool with PDESolverTool {
class Mathematica extends ToolBase("Mathematica") with QETool with ODESolverTool with CounterExampleTool with SimulationTool with DerivativeTool with EquationSolverTool with SimplificationTool with AlgebraTool /*with PDESolverTool*/ {
// JLink, shared between tools
private val link = new JLinkMathematicaLink

Expand Down

0 comments on commit d4eff13

Please sign in to comment.