Skip to content

Commit

Permalink
[Janitor mode] Fix tabs
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@17179 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Sep 11, 2013
1 parent 95f2681 commit a0d98c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ struct SolverSettingsOMCFactory : public ObjectFactory<CreationPolicy>
throw std::runtime_error("Failed loading CVode solver library!");
}

solver_settings_key.assign("extension_export_cvode");
solver_settings_key.assign("extension_export_cvode");
}
else
throw std::invalid_argument("Selected Solver is not available");
Expand Down
14 changes: 7 additions & 7 deletions SimulationRuntime/cpp/Solver/CVode/CVode.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,25 +107,25 @@ class Cvode


double
*_z, ///< Output - (Current) State vector
*_zInit, ///< Temp - Initial state vector
*_z, ///< Output - (Current) State vector
*_zInit, ///< Temp - Initial state vector
*_zWrite; ///< Temp - Zustand den das System rausschreibt

double
_hOut; ///< Temp - Ouput step size for dense output
_hOut; ///< Temp - Ouput step size for dense output




double
_tOut, ///< Output - Time for dense output
_tZero, ///< Temp - Nullstelle
_tLastWrite; ///< Temp - Letzter Ausgabezeitpunkt
_tOut, ///< Output - Time for dense output
_tZero, ///< Temp - Nullstelle
_tLastWrite; ///< Temp - Letzter Ausgabezeitpunkt

bool
_bWritten, ///< Temp - Is output already written
_zeroFound,
_cv_rt; ///< Temp - CVode return flag
_cv_rt; ///< Temp - CVode return flag



Expand Down

0 comments on commit a0d98c5

Please sign in to comment.