Skip to content

Commit

Permalink
Some minor cleaning up.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Dec 5, 2019
1 parent 49fb9e0 commit 118d760
Showing 1 changed file with 9 additions and 9 deletions.
Expand Up @@ -417,7 +417,7 @@ void SimulationSupportPythonWrapper::set_nla_solver(SimulationData *pSimulationD

PyObject * SimulationSupportPythonWrapper::constants(SimulationData *pSimulationData) const
{
// Return our constants values
// Return the constants values of the given simulation data

return DataStore::DataStorePythonWrapper::dataStoreValuesDict(pSimulationData->constantsValues(),
&(pSimulationData->simulationDataUpdatedFunction()));
Expand All @@ -427,7 +427,7 @@ PyObject * SimulationSupportPythonWrapper::constants(SimulationData *pSimulation

PyObject * SimulationSupportPythonWrapper::rates(SimulationData *pSimulationData) const
{
// Return our rates values
// Return the rates values of the given simulation data

return DataStore::DataStorePythonWrapper::dataStoreValuesDict(pSimulationData->ratesValues(),
&(pSimulationData->simulationDataUpdatedFunction()));
Expand All @@ -437,7 +437,7 @@ PyObject * SimulationSupportPythonWrapper::rates(SimulationData *pSimulationData

PyObject * SimulationSupportPythonWrapper::states(SimulationData *pSimulationData) const
{
// Return our states values
// Return the states values of the given simulation data

return DataStore::DataStorePythonWrapper::dataStoreValuesDict(pSimulationData->statesValues(),
&(pSimulationData->simulationDataUpdatedFunction()));
Expand All @@ -447,7 +447,7 @@ PyObject * SimulationSupportPythonWrapper::states(SimulationData *pSimulationDat

PyObject * SimulationSupportPythonWrapper::algebraic(SimulationData *pSimulationData) const
{
// Return our algebraic values
// Return the algebraic values of the given simulation data

return DataStore::DataStorePythonWrapper::dataStoreValuesDict(pSimulationData->algebraicValues(),
&(pSimulationData->simulationDataUpdatedFunction()));
Expand All @@ -457,7 +457,7 @@ PyObject * SimulationSupportPythonWrapper::algebraic(SimulationData *pSimulation

DataStore::DataStoreVariable * SimulationSupportPythonWrapper::points(SimulationResults *pSimulationResults) const
{
// Return our points variable
// Return the points variable of the given simulation results

return pSimulationResults->pointsVariable();
}
Expand All @@ -466,7 +466,7 @@ DataStore::DataStoreVariable * SimulationSupportPythonWrapper::points(Simulation

PyObject * SimulationSupportPythonWrapper::constants(SimulationResults *pSimulationResults) const
{
// Return our constants variables
// Return the constants variables of the given simulation results

return DataStore::DataStorePythonWrapper::dataStoreVariablesDict(pSimulationResults->constantsVariables());
}
Expand All @@ -475,7 +475,7 @@ PyObject * SimulationSupportPythonWrapper::constants(SimulationResults *pSimulat

PyObject * SimulationSupportPythonWrapper::rates(SimulationResults *pSimulationResults) const
{
// Return our rates variables
// Return the rates variables of the given simulation results

return DataStore::DataStorePythonWrapper::dataStoreVariablesDict(pSimulationResults->ratesVariables());
}
Expand All @@ -484,7 +484,7 @@ PyObject * SimulationSupportPythonWrapper::rates(SimulationResults *pSimulationR

PyObject * SimulationSupportPythonWrapper::states(SimulationResults *pSimulationResults) const
{
// Return our states variables
// Return the states variables of the given simulation results

return DataStore::DataStorePythonWrapper::dataStoreVariablesDict(pSimulationResults->statesVariables());
}
Expand All @@ -493,7 +493,7 @@ PyObject * SimulationSupportPythonWrapper::states(SimulationResults *pSimulation

PyObject * SimulationSupportPythonWrapper::algebraic(SimulationResults *pSimulationResults) const
{
// Return our algebraic variables
// Return the algebraic variables of the given simulation results

return DataStore::DataStorePythonWrapper::dataStoreVariablesDict(pSimulationResults->algebraicVariables());
}
Expand Down

0 comments on commit 118d760

Please sign in to comment.