-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #2188 jacobian option #2189
Conversation
@@ -24,9 +23,6 @@ public override void RegisterInContainer(IContainer container) | |||
container.Register<IDiagramModelToXmlMapper, CLIDiagramModelToXmlMapper>(); | |||
container.Register<IDiagramModel, CLIDiagramModel>(); | |||
container.Register<IJournalDiagramManagerFactory, CLIJournalDiagramManagerFactory>(); | |||
|
|||
|
|||
container.Register(typeof(IInputAndOutputBatchView<>), typeof(InputAndOutputBatchView<>)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have removed this abstraction. It made life too complicated and we only have one implementation
@@ -3,6 +3,25 @@ | |||
|
|||
namespace PKSim.Core.Services | |||
{ | |||
public enum JacobianUse | |||
{ | |||
/// <summary> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Our 3 options
await simulationEngine.RunAsync(simulation, _simulationRunOptions); | ||
simulation.HasChanged = true; | ||
} | ||
|
||
private void updateSolverSettings<TSimulation>(TSimulation simulation) where TSimulation : Simulation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it goes deep into the simulation runner., Default is AsIs and it should not change anything
No description provided.