Fixed a compilation error. The include files were not found.
This commit is contained in:
parent
e8f49c5d9a
commit
afc91cdb94
2 changed files with 11 additions and 8 deletions
3
Cantera/src/numerics/.cvsignore
Normal file
3
Cantera/src/numerics/.cvsignore
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Makefile
|
||||
*.d
|
||||
.depends
|
||||
|
|
@ -12,14 +12,14 @@ using namespace std;
|
|||
|
||||
|
||||
// cvode includes
|
||||
#include "../../ext/cvode/include/llnltyps.h"
|
||||
#include "../../ext/cvode/include/llnlmath.h"
|
||||
#include "../../ext/cvode/include/cvode.h"
|
||||
#include "../../ext/cvode/include/cvdense.h"
|
||||
#include "../../ext/cvode/include/cvdiag.h"
|
||||
#include "../../ext/cvode/include/cvspgmr.h"
|
||||
#include "../../ext/cvode/include/nvector.h"
|
||||
#include "../../ext/cvode/include/cvode.h"
|
||||
#include "../../../ext/cvode/include/llnltyps.h"
|
||||
#include "../../../ext/cvode/include/llnlmath.h"
|
||||
#include "../../../ext/cvode/include/cvode.h"
|
||||
#include "../../../ext/cvode/include/cvdense.h"
|
||||
#include "../../../ext/cvode/include/cvdiag.h"
|
||||
#include "../../../ext/cvode/include/cvspgmr.h"
|
||||
#include "../../../ext/cvode/include/nvector.h"
|
||||
#include "../../../ext/cvode/include/cvode.h"
|
||||
|
||||
inline static N_Vector nv(void* x) {
|
||||
return reinterpret_cast<N_Vector>(x);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue