Added a solvers.h file

This commit is contained in:
Harry Moffat 2010-05-23 02:46:46 +00:00
parent d8ae74198d
commit 4856da5083
2 changed files with 13 additions and 1 deletions

View file

@ -18,7 +18,7 @@ INSTALL_TSC = ../../../bin/install_tsc
CXX_H = Cantera.h equilibrium.h IncompressibleSolid.h \
kinetics.h onedim.h surface.h GRI30.h integrators.h \
Metal.h PureFluid.h transport.h Edge.h \
IdealGasMix.h Interface.h numerics.h \
IdealGasMix.h Interface.h numerics.h solvers.h \
reactionpaths.h zerodim.h importPhase.h thermo.h \
radiation.h spectra.h electrolyteThermo.h Cantera.mak Cantera_bt.mak

View file

@ -0,0 +1,12 @@
/**
* @file solvers.h
* solvers of small embedded problems
*/
#ifndef CT_SOLVERS_H_INCL
#define CT_SOLVERS_H_INCL
#include "kernel/ResidEval.h"
#include "kernel/solveProb.h"
#endif