Removed MSVC-specific compiler warning suppression
This commit is contained in:
parent
32bcd0314f
commit
453576f0ad
142 changed files with 0 additions and 818 deletions
|
|
@ -18,9 +18,6 @@
|
|||
#define DLL_EXPORT __declspec(dllexport)
|
||||
#endif
|
||||
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4267)
|
||||
#pragma warning(disable:4503)
|
||||
#else
|
||||
// On other platforms, we turn off the DLL macros.
|
||||
#define DLL_EXPORT
|
||||
|
|
|
|||
|
|
@ -7,11 +7,6 @@
|
|||
* Cantera objects are stored and referenced by integers - no
|
||||
* pointers are passed to or from the calling application.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#define CANTERA_USE_INTERNAL
|
||||
#include "ct.h"
|
||||
|
|
|
|||
|
|
@ -4,13 +4,6 @@
|
|||
#define CANTERA_USE_INTERNAL
|
||||
#include "ctbdry.h"
|
||||
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
|
||||
// Cantera includes
|
||||
#include "kernel/OneDim.h"
|
||||
#include "kernel/Inlet1D.h"
|
||||
|
|
|
|||
|
|
@ -1,12 +1,6 @@
|
|||
/**
|
||||
* @file ctfunc.cpp
|
||||
*/
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
#define CANTERA_USE_INTERNAL
|
||||
#include "ctfunc.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1,6 @@
|
|||
/**
|
||||
* @file ctonedim.cpp
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#pragma warning(disable:4800)
|
||||
#endif
|
||||
|
||||
#define CANTERA_USE_INTERNAL
|
||||
#include "ctonedim.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,11 +1,6 @@
|
|||
/**
|
||||
* @file ctreactor.cpp
|
||||
*/
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#define CANTERA_USE_INTERNAL
|
||||
#include "ctreactor.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,12 +1,6 @@
|
|||
/**
|
||||
* @file ctsurf.cpp
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
// clib header information
|
||||
#define CANTERA_USE_INTERNAL
|
||||
#include "ctsurf.h"
|
||||
|
|
|
|||
|
|
@ -1,11 +1,6 @@
|
|||
/**
|
||||
* @file ctxml.cpp
|
||||
*/
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#define CANTERA_USE_INTERNAL
|
||||
#include "ctxml.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,14 +1,3 @@
|
|||
//
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
/*Warning messages that are identified as Warning C4786: are created
|
||||
when MSVC generates extremely long names that it uses for debugging
|
||||
purposes. The long names are generated by the template expansion
|
||||
process and the warning messages normally can be ignored. Since these
|
||||
warnings tend to hide more interesting warning/error messages, you may
|
||||
wish to suppress the warning*/
|
||||
#endif
|
||||
|
||||
#include <cantera/Cantera.h>
|
||||
#include <cantera/onedim.h>
|
||||
#include <cantera/IdealGasMix.h>
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@
|
|||
//
|
||||
/////////////////////////////////////////////////////////////
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include <cantera/Cantera.h>
|
||||
#include <cantera/zerodim.h>
|
||||
#include <cantera/IdealGasMix.h>
|
||||
|
|
|
|||
|
|
@ -1,16 +1,7 @@
|
|||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "kernel/ThermoPhase.h"
|
||||
#include <stdio.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -25,12 +25,6 @@
|
|||
|
||||
*/
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
// add any other Cantera header files you need here
|
||||
#include <cantera/Cantera.h>
|
||||
#include <cantera/IdealGasMix.h>
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@
|
|||
* Cantera objects are stored and referenced by integers - no
|
||||
* pointers are passed to or from the calling application.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
// Cantera includes
|
||||
#include "kernel/equil.h"
|
||||
#include "kernel/KineticsFactory.h"
|
||||
|
|
|
|||
|
|
@ -5,8 +5,6 @@
|
|||
#ifdef WIN32
|
||||
#define DLL_IMPORT __declspec(dllimport)
|
||||
#define DLL_EXPORT __declspec(dllexport)
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#else
|
||||
#define DLL_EXPORT
|
||||
#define DLL_IMPORT
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@
|
|||
*
|
||||
*/
|
||||
|
||||
// turn off warnings about long names under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "cantera/kernel/config.h"
|
||||
|
||||
#include "Python.h"
|
||||
|
|
|
|||
|
|
@ -29,11 +29,8 @@
|
|||
|
||||
#ifdef WIN32
|
||||
#include <float.h>
|
||||
#pragma warning(disable:4290)
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace mdp {
|
||||
|
|
|
|||
|
|
@ -5,13 +5,6 @@
|
|||
*/
|
||||
// Copyright 2001-2005 California Institute of Technology
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "ctexceptions.h"
|
||||
#include "ctml.h"
|
||||
|
|
|
|||
|
|
@ -34,7 +34,6 @@ namespace Cantera {
|
|||
|
||||
#ifdef WIN32
|
||||
#define TYPENAME_KEYWORD
|
||||
#pragma warning(disable:4267)
|
||||
#else
|
||||
//! create a define for the typename command
|
||||
#define TYPENAME_KEYWORD typename
|
||||
|
|
|
|||
|
|
@ -5,13 +5,6 @@
|
|||
*/
|
||||
// Copyright 2002 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ctml.h"
|
||||
|
||||
//@{
|
||||
|
|
|
|||
|
|
@ -19,10 +19,6 @@
|
|||
|
||||
using namespace std;
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
namespace mdp {
|
||||
/*
|
||||
* Allocate global storage for 2 debugging ints that are used in IO of
|
||||
|
|
|
|||
|
|
@ -14,10 +14,6 @@
|
|||
#ifndef MDP_ALLO_H
|
||||
#define MDP_ALLO_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4290)
|
||||
#endif
|
||||
|
||||
#include <stdexcept>
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -9,11 +9,6 @@
|
|||
* logs
|
||||
* HTML_logs
|
||||
*/
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
// RFB:TODO May need OS specifc include to use varargs.h instead
|
||||
#include <stdarg.h>
|
||||
|
|
|
|||
|
|
@ -3,12 +3,6 @@
|
|||
*/
|
||||
// Copyright 2002 California Institute of Technology
|
||||
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "plots.h"
|
||||
|
||||
using namespace std;
|
||||
|
|
|
|||
|
|
@ -9,9 +9,6 @@
|
|||
#include "ct_defs.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#pragma warning(disable:4996)
|
||||
#define SNPRINTF _snprintf
|
||||
#else
|
||||
#define SNPRINTF snprintf
|
||||
|
|
|
|||
|
|
@ -18,10 +18,6 @@
|
|||
|
||||
#include "ct_defs.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
//! Unary operator to multiply the argument by a constant.
|
||||
/*!
|
||||
* The form of this operator is designed for use by std::transform.
|
||||
|
|
|
|||
|
|
@ -6,14 +6,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
#include "config.h"
|
||||
#ifdef HAS_SSTREAM
|
||||
#include <sstream>
|
||||
|
|
|
|||
|
|
@ -5,11 +5,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
// turn off warnings about truncating long names under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <numeric>
|
||||
#include <algorithm>
|
||||
#include <fstream>
|
||||
|
|
|
|||
|
|
@ -5,14 +5,9 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
#ifndef CKR_CKPARSER_H
|
||||
#define CKR_CKPARSER_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
// disable warning about long names in Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
using namespace std;
|
||||
|
|
|
|||
|
|
@ -5,14 +5,9 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
#ifndef CKR_CKRREADER_H
|
||||
#define CKR_CKRREADER_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
|
|
|||
|
|
@ -5,11 +5,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
// turn off warnings about truncating long names under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include "Reaction.h"
|
||||
#include <iostream>
|
||||
#include <stdio.h>
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings about truncating long names under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
|
|
|||
|
|
@ -2,11 +2,6 @@
|
|||
* @file ck2ct.cpp
|
||||
* Convert CK-format reaction mechanism files to Cantera input format.
|
||||
*/
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <ctype.h>
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings about truncating long names under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <ctype.h>
|
||||
|
||||
#include <math.h>
|
||||
|
|
|
|||
|
|
@ -8,10 +8,6 @@
|
|||
#ifndef CKR_UTILS_H
|
||||
#define CKR_UTILS_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <math.h>
|
||||
#include <string>
|
||||
#include <map>
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings about truncating long names under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <math.h>
|
||||
#include "thermoFunctions.h"
|
||||
#include <iostream>
|
||||
|
|
|
|||
|
|
@ -7,14 +7,9 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
#ifndef CKR_THERMOFUNCTIONS_H
|
||||
#define CKR_THERMOFUNCTIONS_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include "Species.h"
|
||||
|
||||
namespace ckr {
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings about truncating long names under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include <cstdio>
|
||||
#include "writelog.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -6,11 +6,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "ChemEquil.h"
|
||||
|
|
|
|||
|
|
@ -20,10 +20,6 @@
|
|||
|
||||
#include "clockWC.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace VCSnonideal {
|
||||
|
|
|
|||
|
|
@ -10,10 +10,6 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "AqueousKinetics.h"
|
||||
#include "ReactionData.h"
|
||||
|
|
|
|||
|
|
@ -3,12 +3,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
|
||||
#include "FalloffFactory.h"
|
||||
#include "ctexceptions.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -6,13 +6,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "GRI_30_Kinetics.h"
|
||||
|
||||
#include "ReactionData.h"
|
||||
|
|
|
|||
|
|
@ -7,13 +7,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "GasKinetics.h"
|
||||
|
||||
#include "ReactionData.h"
|
||||
|
|
|
|||
|
|
@ -8,11 +8,6 @@
|
|||
|
||||
// reaction path analysis support
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "Group.h"
|
||||
|
||||
#include <algorithm>
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ImplicitSurfChem.h"
|
||||
#include "Integrator.h"
|
||||
#include "solveSP.h"
|
||||
|
|
|
|||
|
|
@ -6,15 +6,9 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
#ifndef CT_IMPSURFCHEM_H
|
||||
#define CT_IMPSURFCHEM_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "FuncEval.h"
|
||||
#include "Integrator.h"
|
||||
#include "InterfaceKinetics.h"
|
||||
|
|
|
|||
|
|
@ -5,13 +5,6 @@
|
|||
|
||||
// Copyright 2002 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "InterfaceKinetics.h"
|
||||
#include "EdgeKinetics.h"
|
||||
#include "SurfPhase.h"
|
||||
|
|
|
|||
|
|
@ -3,11 +3,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include "KineticsFactory.h"
|
||||
|
||||
#include "GasKinetics.h"
|
||||
|
|
|
|||
|
|
@ -4,11 +4,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ReactionPath.h"
|
||||
#include "Kinetics.h"
|
||||
#include "reaction_defs.h"
|
||||
|
|
|
|||
|
|
@ -5,13 +5,6 @@
|
|||
///
|
||||
//------------------------------------------------
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
|
||||
#include "ReactionStoichMgr.h"
|
||||
#include "StoichManager.h"
|
||||
#include "ctexceptions.h"
|
||||
|
|
|
|||
|
|
@ -11,11 +11,6 @@
|
|||
*/
|
||||
// Copyright 2002 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "importKinetics.h"
|
||||
#include "mix_defs.h"
|
||||
#include <time.h>
|
||||
|
|
|
|||
|
|
@ -6,11 +6,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "BandMatrix.h"
|
||||
#include "ctlapack.h"
|
||||
#include "utilities.h"
|
||||
|
|
|
|||
|
|
@ -3,15 +3,9 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
#ifndef CT_CVODEINT_H
|
||||
#define CT_CVODEINT_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "Integrator.h"
|
||||
#include "FuncEval.h"
|
||||
#include "ctexceptions.h"
|
||||
|
|
|
|||
|
|
@ -3,17 +3,11 @@
|
|||
*/
|
||||
// Copyright 2005 California Institute of Technology
|
||||
|
||||
|
||||
#ifndef CT_CVODESWRAPPER_H
|
||||
#define CT_CVODESWRAPPER_H
|
||||
|
||||
#ifdef HAS_SUNDIALS
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "Integrator.h"
|
||||
#include "FuncEval.h"
|
||||
#include "ctexceptions.h"
|
||||
|
|
|
|||
|
|
@ -4,11 +4,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "ctlapack.h"
|
||||
#include "utilities.h"
|
||||
|
|
|
|||
|
|
@ -9,12 +9,6 @@
|
|||
|
||||
#undef DEBUG_FUNC
|
||||
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
|
||||
#include <iostream>
|
||||
|
|
|
|||
|
|
@ -8,11 +8,6 @@
|
|||
#ifndef CT_FUNCEVAL_H
|
||||
#define CT_FUNCEVAL_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
|
||||
namespace Cantera {
|
||||
|
|
|
|||
|
|
@ -10,18 +10,11 @@
|
|||
|
||||
#ifndef CT_INTEGRATOR_H
|
||||
#define CT_INTEGRATOR_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "FuncEval.h"
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "global.h"
|
||||
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
const int DIAG = 1;
|
||||
|
|
|
|||
|
|
@ -7,11 +7,6 @@
|
|||
#ifndef CT_RESIDEVAL_H
|
||||
#define CT_RESIDEVAL_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "ctexceptions.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -7,11 +7,6 @@
|
|||
* See file License.txt for licensing information
|
||||
*/
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
|
||||
|
|
|
|||
|
|
@ -2,10 +2,6 @@
|
|||
* @file sort.cpp
|
||||
*/
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include "sort.h"
|
||||
|
||||
namespace Cantera {
|
||||
|
|
|
|||
|
|
@ -8,12 +8,6 @@
|
|||
* Copyright 2002 California Institute of Technology
|
||||
*/
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
|
||||
#include "MultiJac.h"
|
||||
using namespace std;
|
||||
|
||||
|
|
|
|||
|
|
@ -8,11 +8,6 @@
|
|||
* Copyright 2001 California Institute of Technology
|
||||
*/
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include <vector>
|
||||
using namespace std;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,3 @@
|
|||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "MultiJac.h"
|
||||
#include "MultiNewton.h"
|
||||
#include "OneDim.h"
|
||||
|
|
|
|||
|
|
@ -1,9 +1,3 @@
|
|||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @file Sim1D.cpp
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -5,10 +5,6 @@
|
|||
#ifndef CT_SIM1D_H
|
||||
#define CT_SIM1D_H
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
#include "OneDim.h"
|
||||
#include "funcs.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -3,14 +3,6 @@
|
|||
*/
|
||||
// Copyright 2002 California Institute of Technology
|
||||
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#pragma warning(disable:4267)
|
||||
#endif
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,12 +3,6 @@
|
|||
*/
|
||||
// Copyright 2002-3 California Institute of Technology
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "Inlet1D.h"
|
||||
|
||||
using namespace std;
|
||||
|
|
|
|||
|
|
@ -2,11 +2,6 @@
|
|||
* @file newton_utils.cpp
|
||||
*/
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "Domain1D.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,3 @@
|
|||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
|
||||
#include <map>
|
||||
#include <algorithm>
|
||||
#include "Domain1D.h"
|
||||
|
|
|
|||
|
|
@ -2,11 +2,6 @@
|
|||
* @file rotor.cpp
|
||||
*
|
||||
*/
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "rotor.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -6,12 +6,6 @@
|
|||
*/
|
||||
|
||||
// Copyright 2002 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "mix_defs.h"
|
||||
#include "ConstDensityThermo.h"
|
||||
|
|
|
|||
|
|
@ -5,11 +5,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include "Constituents.h"
|
||||
#include "Elements.h"
|
||||
using namespace std;
|
||||
|
|
|
|||
|
|
@ -8,11 +8,6 @@
|
|||
*/
|
||||
// Copyright 2003 California Institute of Technology
|
||||
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include "Elements.h"
|
||||
#include "xml.h"
|
||||
#include "ctml.h"
|
||||
|
|
|
|||
|
|
@ -1,15 +1,9 @@
|
|||
/**
|
||||
*
|
||||
* @file IdealGasPhase.cpp
|
||||
* ThermoPhase object for the ideal gas equation of
|
||||
* state - workhorse for %Cantera (see \ref thermoprops
|
||||
* and class \link Cantera::IdealGasPhase IdealGasPhase\endlink).
|
||||
*
|
||||
*/
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "mix_defs.h"
|
||||
|
|
|
|||
|
|
@ -11,11 +11,6 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "IdealSolnGasVPSS.h"
|
||||
#include "VPSSMgr.h"
|
||||
|
|
|
|||
|
|
@ -10,11 +10,6 @@
|
|||
#include "config.h"
|
||||
#ifdef WITH_LATTICE_SOLID
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "mix_defs.h"
|
||||
#include "LatticePhase.h"
|
||||
|
|
|
|||
|
|
@ -2,11 +2,6 @@
|
|||
* @file LatticeSolidPhase.cpp
|
||||
*/
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "config.h"
|
||||
#ifdef WITH_LATTICE_SOLID
|
||||
|
||||
|
|
|
|||
|
|
@ -6,11 +6,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
|
||||
#include "SpeciesThermoFactory.h"
|
||||
using namespace std;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,11 +7,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "Phase.h"
|
||||
#include "vec_functions.h"
|
||||
|
|
|
|||
|
|
@ -6,11 +6,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
|
||||
#include "SpeciesThermoFactory.h"
|
||||
using namespace std;
|
||||
|
||||
|
|
@ -39,7 +34,6 @@ using namespace std;
|
|||
|
||||
using namespace ctml;
|
||||
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
SpeciesThermoFactory* SpeciesThermoFactory::s_factory = 0;
|
||||
|
|
@ -47,9 +41,7 @@ namespace Cantera {
|
|||
#if defined(THREAD_SAFE_CANTERA)
|
||||
boost::mutex SpeciesThermoFactory::species_thermo_mutex ;
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
//! Examine the types of species thermo parameterizations,
|
||||
//! and return a flag indicating the type of reference state thermo manager
|
||||
//! that will be needed in order to evaluate them all.
|
||||
|
|
|
|||
|
|
@ -16,12 +16,7 @@
|
|||
#include "ct_defs.h"
|
||||
#include "utilities.h"
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4996)
|
||||
#endif
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
|
||||
//! Manages the independent variables of temperature, mass density,
|
||||
//! and species mass/mole fraction that define the thermodynamic
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
/**
|
||||
*
|
||||
* @file StoichSubstance.cpp
|
||||
* This file contains the class definitions for the StoichSubstance
|
||||
* ThermoPhase class.
|
||||
|
|
@ -7,11 +6,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ct_defs.h"
|
||||
#include "mix_defs.h"
|
||||
#include "StoichSubstance.h"
|
||||
|
|
@ -19,7 +13,6 @@
|
|||
|
||||
namespace Cantera {
|
||||
|
||||
|
||||
// Default empty constructor
|
||||
StoichSubstance::StoichSubstance() :
|
||||
m_kk(0),
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@
|
|||
*/
|
||||
// Copyright 2002 California Institute of Technology
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "SurfPhase.h"
|
||||
#include "EdgePhase.h"
|
||||
#include "ThermoFactory.h"
|
||||
|
|
|
|||
|
|
@ -6,11 +6,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
#include "ThermoFactory.h"
|
||||
|
||||
#include "speciesThermoTypes.h"
|
||||
|
|
|
|||
|
|
@ -7,12 +7,6 @@
|
|||
|
||||
// Copyright 2002 California Institute of Technology
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ThermoPhase.h"
|
||||
#include <iomanip>
|
||||
|
||||
|
|
|
|||
|
|
@ -11,11 +11,6 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "VPSSMgr.h"
|
||||
#include "VPStandardStateTP.h"
|
||||
|
|
|
|||
|
|
@ -10,14 +10,9 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#endif
|
||||
|
||||
|
||||
#include "SpeciesThermo.h"
|
||||
|
||||
|
||||
#include "VPSSMgr.h"
|
||||
#include "VPSSMgrFactory.h"
|
||||
|
||||
|
|
@ -45,7 +40,6 @@
|
|||
using namespace ctml;
|
||||
using namespace std;
|
||||
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
VPSSMgrFactory* VPSSMgrFactory::s_factory = 0;
|
||||
|
|
|
|||
|
|
@ -11,11 +11,6 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "VPSSMgr_ConstVol.h"
|
||||
#include "xml.h"
|
||||
|
|
|
|||
|
|
@ -11,11 +11,6 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "VPSSMgr_General.h"
|
||||
#include "PDSS.h"
|
||||
|
|
@ -33,7 +28,6 @@ using namespace std;
|
|||
|
||||
namespace Cantera {
|
||||
|
||||
|
||||
VPSSMgr_General::VPSSMgr_General(VPStandardStateTP *vp_ptr,
|
||||
SpeciesThermo *spth) :
|
||||
VPSSMgr(vp_ptr, spth)
|
||||
|
|
@ -45,7 +39,6 @@ namespace Cantera {
|
|||
m_useTmpRefStateStorage = true;
|
||||
}
|
||||
|
||||
|
||||
VPSSMgr_General::~VPSSMgr_General()
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,11 +11,6 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "VPSSMgr_IdealGas.h"
|
||||
#include "utilities.h"
|
||||
|
|
@ -36,7 +31,6 @@ namespace Cantera {
|
|||
m_useTmpStandardStateStorage = true;
|
||||
}
|
||||
|
||||
|
||||
VPSSMgr_IdealGas::~VPSSMgr_IdealGas()
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,11 +13,6 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "VPSSMgr_Water_ConstVol.h"
|
||||
#include "PDSS_Water.h"
|
||||
|
|
|
|||
|
|
@ -13,11 +13,6 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "VPSSMgr_Water_HKFT.h"
|
||||
#include "PDSS_Water.h"
|
||||
|
|
|
|||
|
|
@ -10,11 +10,6 @@
|
|||
* Contract DE-AC04-94AL85000 with Sandia Corporation, the
|
||||
* U.S. Government retains certain rights in this software.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "VPStandardStateTP.h"
|
||||
#include "VPSSMgr.h"
|
||||
|
|
|
|||
|
|
@ -5,12 +5,6 @@
|
|||
|
||||
// Copyright 2001 California Institute of Technology
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ThermoPhase.h"
|
||||
#include "PureFluidPhase.h"
|
||||
#include "mix_defs.h"
|
||||
|
|
|
|||
|
|
@ -2,11 +2,6 @@
|
|||
* @file MixTransport.cpp
|
||||
* Mixture-averaged transport properties for ideal gas mixtures.
|
||||
*/
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ThermoPhase.h"
|
||||
#include "AqueousTransport.h"
|
||||
|
|
@ -27,12 +22,10 @@ using namespace std;
|
|||
*/
|
||||
#define MIN_X 1.e-20
|
||||
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
//////////////////// class AqueousTransport methods //////////////
|
||||
|
||||
|
||||
AqueousTransport::AqueousTransport() :
|
||||
m_nsp(0),
|
||||
m_tmin(-1.0),
|
||||
|
|
@ -58,11 +51,8 @@ namespace Cantera {
|
|||
m_debug(false),
|
||||
m_nDim(1)
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
// Initialize the object
|
||||
/*
|
||||
* This is where we dimension everything.
|
||||
|
|
|
|||
|
|
@ -10,12 +10,6 @@
|
|||
* See file License.txt for licensing information
|
||||
*/
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "ThermoPhase.h"
|
||||
#include "DustyGasTransport.h"
|
||||
|
||||
|
|
@ -27,13 +21,10 @@ using namespace std;
|
|||
*/
|
||||
#define MIN_X 1.e-20
|
||||
|
||||
|
||||
namespace Cantera {
|
||||
|
||||
|
||||
//////////////////// class DustyGasTransport methods //////////////
|
||||
|
||||
|
||||
DustyGasTransport::DustyGasTransport(thermo_t* thermo)
|
||||
: Transport(thermo),
|
||||
m_temp(-1.0),
|
||||
|
|
|
|||
|
|
@ -8,19 +8,11 @@
|
|||
#ifndef CT_LMATRIX_H
|
||||
#define CT_LMATRIX_H
|
||||
|
||||
// turn off warnings under Windows
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "DenseMatrix.h"
|
||||
#include "ct_defs.h"
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
||||
namespace Cantera {
|
||||
|
|
|
|||
|
|
@ -3,11 +3,6 @@
|
|||
*/
|
||||
// Copyright 2001 California Institute of Technology */
|
||||
|
||||
#ifdef WIN32
|
||||
#pragma warning(disable:4786)
|
||||
#pragma warning(disable:4503)
|
||||
#endif
|
||||
|
||||
#include "MMCollisionInt.h"
|
||||
#include "utilities.h"
|
||||
#include "polyfit.h"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue