| 474 | } |
| 475 | |
| 476 | EquiSolnAlgo* PythonAnalysisBuilder::getAlgorithm() |
| 477 | { |
| 478 | if(theStaticAnalysis != 0) { |
| 479 | return theStaticAnalysis->getAlgorithm(); |
| 480 | } else if(theTransientAnalysis != 0) { |
| 481 | return theTransientAnalysis->getAlgorithm(); |
| 482 | } |
| 483 | |
| 484 | return 0; |
| 485 | } |
| 486 | |
| 487 | StaticIntegrator* PythonAnalysisBuilder::getStaticIntegrator() { |
| 488 | if(theStaticAnalysis != 0) { |
no outgoing calls
no test coverage detected