Skip to content

Commit

Permalink
hopefully, this commit will fix the build of cminpack together with t…
Browse files Browse the repository at this point in the history
…he cppruntime

git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@18797 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
Christian SChubert committed Jan 27, 2014
1 parent 635d750 commit f597bc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Makefile.common
Expand Up @@ -192,6 +192,7 @@ CMinpack:
#cp -rp 3rdParty/CMinpack/install/include/* $(builddir_inc)

CMinpack-clean:
rm -rf 3rdParty/CMinpack/install
if test -f 3rdParty/CMinpack/build/Makefile; then make -C 3rdParty/CMinpack/build clean; fi
rm -f 3rdParty/CMinpack/build/Makefile

Expand Down
2 changes: 1 addition & 1 deletion SimulationRuntime/cpp/CMakeLists.txt
Expand Up @@ -178,7 +178,7 @@ include_directories ("Include/Solver")
#add Euler solver project
add_subdirectory (Solver/Euler)
add_subdirectory (Solver/Newton)
#add_subdirectory (Solver/Hybrj)
add_subdirectory (Solver/Hybrj)


if(REDUCE_DAE)
Expand Down
2 changes: 1 addition & 1 deletion SimulationRuntime/cpp/Solver/Hybrj/Hybrj.cpp
Expand Up @@ -418,7 +418,7 @@ void Hybrj::calcJacobian(double *fjac)

}

void Hybrj::fcn(const int *n, const double *x, double *fvec, double *fjac, const int *ldfjac, int *iflag,void* userdata)
void Hybrj::fcn(const int *n, const double *x, double *fvec, double *fjac, const int *ldfjac, int *iflag, void* userdata)
{
if(*iflag == 1)
{
Expand Down

0 comments on commit f597bc5

Please sign in to comment.