Skip to content

Commit

Permalink
[Janitor mode] Fix whitespace
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@25464 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
OpenModelica-Hudson committed Apr 9, 2015
1 parent 2ae042b commit 148ec3d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Expand Up @@ -16,13 +16,13 @@ struct LinSolverBodasFactory : public ObjectFactory<CreationPolicy>
virtual ~LinSolverBodasFactory()
{
}

virtual boost::shared_ptr<ILinSolverSettings> createLinSolverSettings(string lin_solver)
{
boost::shared_ptr<ILinSolverSettings> linsolversetting;
return linsolversetting;
}

virtual boost::shared_ptr<IAlgLoopSolver> createLinSolver(IAlgLoop* algLoop, string solver_name, boost::shared_ptr<ILinSolverSettings> solver_settings)
{
boost::shared_ptr<IAlgLoopSolver> solver;
Expand Down
Expand Up @@ -11,7 +11,7 @@ struct LinSolverVxWorksFactory : public ObjectFactory<CreationPolicy>
, _last_selected_solver("empty")
{
}

~LinSolverVxWorksFactory()
{
}
Expand Down
Expand Up @@ -11,7 +11,7 @@ struct NonLinSolverVxWorksFactory : public ObjectFactory<CreationPolicy>
, _last_selected_solver("empty")
{
}

~NonLinSolverVxWorksFactory()
{
}
Expand Down
Expand Up @@ -21,24 +21,24 @@ struct SystemBodasFactory : public ObjectFactory<CreationPolicy>
boost::shared_ptr<IAlgLoopSolverFactory> algloopsolverfactory = ObjectFactory<CreationPolicy>::_factory->LoadAlgLoopSolverFactory(globalSettings);
return algloopsolverfactory;
}

boost::shared_ptr<ISimData> createSimData()
{
boost::shared_ptr<ISimData> simData = ObjectFactory<CreationPolicy>::_factory->LoadSimData();
return simData;
}

boost::shared_ptr<IMixedSystem> createSystem(string modelLib, string modelKey, IGlobalSettings* globalSettings, boost::shared_ptr<IAlgLoopSolverFactory> algloopsolverfactory, boost::shared_ptr<ISimData> simData)
{
boost::shared_ptr<IMixedSystem> system = ObjectFactory<CreationPolicy>::_factory->LoadSystem(globalSettings, algloopsolverfactory, simData);
return system;
}

boost::shared_ptr<IMixedSystem> createModelicaSystem(string modelLib, string modelKey, IGlobalSettings* globalSettings, boost::shared_ptr<IAlgLoopSolverFactory> algloopsolverfactory, boost::shared_ptr<ISimData> simData)
{
boost::shared_ptr<IMixedSystem> system = ObjectFactory<CreationPolicy>::_factory->LoadSystem(globalSettings, algloopsolverfactory, simData);
return system;
}

bool _use_modelica_compiler;
};
Expand Up @@ -18,7 +18,7 @@ class VxWorksFactory
boost::shared_ptr<ISolverSettings> LoadSolverSettings(string solver_name, boost::shared_ptr<IGlobalSettings>);
boost::shared_ptr<IAlgLoopSolver> LoadAlgLoopSolver(IAlgLoop* algLoop, string solver_name, boost::shared_ptr<INonLinSolverSettings> solver_settings);
boost::shared_ptr<INonLinSolverSettings> LoadAlgLoopSolverSettings(string solver_name);

private:
string _library_path;
string _modelicasystem_path;
Expand Down

0 comments on commit 148ec3d

Please sign in to comment.